home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / infosrvr / dev / www_talk.930 / 000605_pflynn@curia.ucc.ie _Wed Jan 27 17:32:21 1993.msg < prev    next >
Internet Message Format  |  1994-01-24  |  2KB

  1. Return-Path: <pflynn@curia.ucc.ie>
  2. Received: from dxmint.cern.ch by  nxoc01.cern.ch  (NeXT-1.0 (From Sendmail 5.52)/NeXT-2.0)
  3.     id AA19144; Wed, 27 Jan 93 17:32:21 MET
  4. Received: from cearn.cern.ch by dxmint.cern.ch (5.65/DEC-Ultrix/4.3)
  5.     id AA06857; Wed, 27 Jan 1993 17:47:59 +0100
  6. Received: from CEARN.CERN.CH by CEARN.cern.ch (IBM VM SMTP V2R2)
  7.    with BSMTP id 2101; Wed, 27 Jan 93 17:46:56 SET
  8. Received: from IRUCCIBM.BITNET (NJE origin MAILER@IRUCCIBM) by CEARN.CERN.CH (LMail V1.1b/1.7e) with BSMTP id 8072; Wed, 27 Jan 1993 17:46:56 +0100
  9. Received: from IRUCCVAX.UCC.IE by IRUCCIBM.BITNET (Mailer R2.08) with BSMTP id
  10.  8896; Wed, 27 Jan 93 16:44:25 IST
  11. Received: from curia.ucc.ie by IRUCCVAX.UCC.IE (PMDF #12095) id
  12.  <01GU0QD0M034000MNN@IRUCCVAX.UCC.IE>; Wed, 27 Jan 1993 16:35 GMT
  13. Received: by curia.ucc.ie (4.1/SMI-4.1) id AA10353; Wed, 27 Jan 93 16:33:38 GMT
  14. Date: Wed, 27 Jan 93 16:33:38 GMT
  15. From: pflynn@curia.ucc.ie (Peter Flynn)
  16. Subject: Getting searching to work
  17. To: www-talk@nxoc01.cern.ch
  18. Message-Id: <9301271633.AA10353@curia.ucc.ie>
  19. X-Envelope-To: www-talk@info.cern.ch
  20.  
  21. How is it best to add a simple search facility to a httpd server?
  22. Or, better put, if a user wends hir way into one of my html menus,
  23. is there a simple addition I can make that will add a search capability?
  24. What I'd like is something like:
  25.  
  26. <dl>
  27. <dt><a name=dub href="dubliners.html">Dubliners<dd>by James Joyce
  28. <dt><a name=ulysses href="ulysses.html">Ulysses<dd>by James Joyce
  29. [etc]
  30. <dt><a name=something href=somepointer>Search<dd>the above texts for
  31. a name or keyword
  32. </dl>
  33.  
  34. Can a href point to a script or binary which will pipe its output back
  35. to httpd and return the user to the same menu? Can that script be as
  36. simple as, say, "grep '$1' * >somewhere" ? Or (as we're using PAT),
  37. something like "pat something; $1 >somewhere" and get httpd to pass
  38. the contents of the "name" aatribute into the "something" argument?
  39. Or do I need another piece of already-httpd-enmeshed software? What
  40. are people using for the Bible search that is available thru WWW?
  41.  
  42. ///Peter